home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 41
/
Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso
/
-seriously_amiga-
/
misc
/
evenmore
/
rexx
/
testport.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-04-28
|
446b
|
31 lines
/* Test port */
if ~show('p','rexxsupport.library') then call addlib('rexxsupport.library',0,-30,0)
address 'EvenMore.1'
options results
"GETFILENAME"; say 'Filename='RESULT
"GETFILESIZE"; say 'Filesize='RESULT
"GETLINE 2"; say 'Line 2='RESULT
"GETFONT"; say 'Font='RESULT
"SETFONT Xen/8"
delay(50)
"ICONIFY"
delay(50)
"OCCURANCE e"
say 'E occurs 'RESULT' times'
"CLOSE"
delay(50)
"ICONIFY"
delay(200)
"QUIT"
exit